home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 23 / AMIGAplus Sonderheft 23 (2000)(Falke)(DE)[!].iso / Tools / Text-Viewer / MSWordView / mswordview_src / helper-scripts / WordToTxt < prev   
Encoding:
Text File  |  1999-11-06  |  187 b   |  9 lines

  1. #!/bin/sh
  2. #from mswordview mailing list by
  3. #E. Frank Ball <frankb@sr.hp.com>
  4.  
  5. htmlfile=/tmp/mswordviewfile$$
  6. mswordview -o $htmlfile $1
  7. lynx -dump -force_html $htmlfile
  8. /bin/rm $htmlfile
  9.